home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / serien / purity / nr.42 / includes3v1 / includes3v1.lha / Prefs / Overscan.i < prev    next >
Text File  |  1994-12-04  |  744b  |  36 lines

  1.    {   File format for overscan preferences  }
  2.  
  3. {$I "Include:Libraries/IffParse.i"}
  4. {$I "Include:Graphics/Gfx.i"}
  5.  
  6.  
  7. const
  8.     ID_OSCN = 1330856782;
  9.     OSCAN_MAGIC = $FEDCBA89;
  10.  
  11.  
  12. Type
  13.  OverscanPrefs = Record
  14.     os_Reserved,
  15.     os_Magic         : Integer;
  16.     os_HStart,
  17.     os_HStop,
  18.     os_VStart,
  19.     os_VStop         : WORD;
  20.     os_DisplayID     : Integer;
  21.     os_ViewPos,
  22.     os_Text          : Point;
  23.     os_Standard      : Rectangle;
  24.  end;
  25.  OverscanPrefsPtr = ^OverscanPrefs;
  26.  
  27. { os_HStart, os_HStop, os_VStart, os_VStop can only be looked at if
  28.  * os_Magic equals OSCAN_MAGIC. If os_Magic is set to any other value,
  29.  * these four fields are undefined
  30.  }
  31.  
  32.  
  33. {***************************************************************************}
  34.  
  35.  
  36.